home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / devel / libx11 / include / x11 / xaw / stripcharp.h < prev    next >
C/C++ Source or Header  |  1999-01-01  |  3KB  |  84 lines

  1. /*
  2. * $XConsortium: StripCharP.h,v 1.4 90/10/22 14:38:15 converse Exp $
  3. */
  4.  
  5.  
  6. /***********************************************************
  7. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts,
  8. and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
  9.  
  10.                         All Rights Reserved
  11.  
  12. Permission to use, copy, modify, and distribute this software and its 
  13. documentation for any purpose and without fee is hereby granted, 
  14. provided that the above copyright notice appear in all copies and that
  15. both that copyright notice and this permission notice appear in 
  16. supporting documentation, and that the names of Digital or MIT not be
  17. used in advertising or publicity pertaining to distribution of the
  18. software without specific, written prior permission.  
  19.  
  20. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  21. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  22. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  23. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  24. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  25. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  26. SOFTWARE.
  27.  
  28. ******************************************************************/
  29.  
  30. #ifndef _XawStripChartP_h
  31. #define _XawStripChartP_h
  32.  
  33. #include <X11/Xaw/StripChart.h>
  34. #include <X11/Xaw/SimpleP.h>
  35.  
  36. #define NO_GCS 0
  37. #define FOREGROUND 1 << 0
  38. #define HIGHLIGHT  1 << 1
  39. #define ALL_GCS (FOREGROUND | HIGHLIGHT)
  40.  
  41. /* New fields for the stripChart widget instance record */
  42.  
  43. typedef struct {
  44.     Pixel    fgpixel;    /* color index for graph */
  45.     Pixel    hipixel;    /* color index for lines */
  46.     GC    fgGC;        /* graphics context for fgpixel */
  47.     GC    hiGC;        /* graphics context for hipixel */
  48.     
  49.     /* start of graph stuff */
  50.     
  51.     int    update;        /* update frequence */
  52.     int    scale;        /* scale factor */
  53.     int    min_scale;    /* smallest scale factor */
  54.     int    interval;    /* data point interval */
  55.     XPoint * points ;    /* Poly point for repairing graph lines. */
  56.     double max_value;    /* Max Value in window */
  57.     double valuedata[2048];/* record of data points */
  58.     XtIntervalId interval_id;
  59.     XtCallbackList get_value; /* proc to call to fetch load pt */
  60.     int jump_val;        /* Amount to jump on each scroll. */
  61. } StripChartPart;
  62.  
  63. /* Full instance record declaration */
  64. typedef struct _StripChartRec {
  65.    CorePart core;
  66.    SimplePart simple;
  67.    StripChartPart strip_chart;
  68. } StripChartRec;
  69.  
  70. /* New fields for the StripChart widget class record */
  71. typedef struct {int dummy;} StripChartClassPart;
  72.  
  73. /* Full class record declaration. */
  74. typedef struct _StripChartClassRec {
  75.    CoreClassPart core_class;
  76.    SimpleClassPart simple_class;
  77.    StripChartClassPart strip_chart_class;
  78. } StripChartClassRec;
  79.  
  80. /* Class pointer. */
  81. extern StripChartClassRec stripChartClassRec;
  82.  
  83. #endif /* _XawStripChartP_h */
  84.